home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4d21.zip / SELF_PRJ.DPR < prev    next >
Text File  |  1997-06-03  |  218b  |  15 lines

  1. program Self_prj;
  2.  
  3. uses
  4.   Forms,
  5.   Self_pgm in 'Self_PGM.PAS' {Self},
  6.   wsc in 'wsc.pas',
  7.   DisplayUnit in 'display.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TSelf, Self);
  13.   Application.Run;
  14. end.
  15.